home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gserrors.h < prev    next >
Text File  |  1994-10-10  |  2KB  |  44 lines

  1. /* Copyright (C) 1989, 1993 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gserrors.h */
  20. /* Error code definitions */
  21.  
  22. /* A procedure that may return an error always returns */
  23. /* a non-negative value (zero, unless otherwise noted) for success, */
  24. /* or negative for failure. */
  25. /* We use ints rather than an enum to avoid a lot of casting. */
  26.  
  27. #define gs_error_unknownerror (-1)        /* unknown error */
  28. #define gs_error_interrupt (-6)
  29. #define gs_error_invalidaccess (-7)
  30. #define gs_error_invalidfileaccess (-9)
  31. #define gs_error_invalidfont (-10)
  32. #define gs_error_ioerror (-12)
  33. #define gs_error_limitcheck (-13)
  34. #define gs_error_nocurrentpoint (-14)
  35. #define gs_error_rangecheck (-15)
  36. #define gs_error_typecheck (-20)
  37. #define gs_error_undefined (-21)
  38. #define gs_error_undefinedfilename (-22)
  39. #define gs_error_undefinedresult (-23)
  40. #define gs_error_VMerror (-25)
  41. #define gs_error_unregistered (-29)
  42.  
  43. #define gs_error_Fatal (-100)
  44.